home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / Example_Code_v37 / Libraries / DOS / smakefile < prev   
Encoding:
Makefile  |  1996-03-17  |  306 b   |  19 lines

  1. CFLAGS = nostackcheck structureequivalence saveds ignore=88
  2.  
  3. all: dos_calls exall pattern readargs
  4.  
  5. dos_calls: dos_calls.c
  6.     sc link $(CFLAGS) $@.c
  7.  
  8. exall: exall.c
  9.     sc link $(CFLAGS) $@.c
  10.  
  11. pattern: pattern.c
  12.     sc link $(CFLAGS) $@.c
  13.  
  14. readargs: readargs.c
  15.     sc link $(CFLAGS) $@.c
  16.  
  17. clean:
  18.     -delete \#?.(o|lnk)
  19.